projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8b7d6d4
)
(struct Lisp_Process): Declare bit field as unsigned.
author
Andreas Schwab
<schwab@suse.de>
Sat, 8 Mar 2008 15:55:51 +0000
(15:55 +0000)
committer
Andreas Schwab
<schwab@suse.de>
Sat, 8 Mar 2008 15:55:51 +0000
(15:55 +0000)
src/ChangeLog
patch
|
blob
|
history
src/process.h
patch
|
blob
|
history
diff --git
a/src/ChangeLog
b/src/ChangeLog
index b2310ae76c252d9772640da1f9e498ec5b8ea491..b00ca9a32a8e24960e2d4e83ec6eda357ebab984 100644
(file)
--- a/
src/ChangeLog
+++ b/
src/ChangeLog
@@
-1,3
+1,7
@@
+2008-03-08 Andreas Schwab <schwab@suse.de>
+
+ * process.h (struct Lisp_Process): Declare bit field as unsigned.
+
2008-03-07 Stefan Monnier <monnier@iro.umontreal.ca>
* fileio.c (Fsubstitute_in_file_name): Fix up computation of maximum
diff --git
a/src/process.h
b/src/process.h
index 7a212245724732ad74ef960d108a39b00316508e..3be8686b830c244ff3c63346942d83102380280e 100644
(file)
--- a/
src/process.h
+++ b/
src/process.h
@@
-123,7
+123,7
@@
struct Lisp_Process
This is to avoid consing in a signal handler. The `raw_status_new'
flag indicates that `raw_status' contains a new status that still
needs to be synced to `status'. */
- int raw_status_new : 1;
+
unsigned
int raw_status_new : 1;
int raw_status;
};